home *** CD-ROM | disk | FTP | other *** search
/ Washington DC / Washington DC 100 Photos & Screensaver.iso / pc / WASHDC.EXE / WASHDC.dxr / 00018.ls < prev    next >
Encoding:
Text File  |  2000-04-18  |  325 b   |  20 lines

  1. global gMouseH, gMouseV, gBackdrop
  2.  
  3. on startMovie
  4.   set gMouseH to the mouseH
  5.   set gMouseV to the mouseV
  6.   set the keyDownScript to "quit"
  7.   set the mouseDownScript to "quit"
  8.   cursor(200)
  9. end
  10.  
  11. on stopMovie
  12.   cursor(-1)
  13. end
  14.  
  15. on enterFrame
  16.   if (the mouseH <> gMouseH) or (the mouseV <> gMouseV) then
  17.     quit()
  18.   end if
  19. end
  20.